<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with step-by-step guide]]></title><description><![CDATA[A list of topics that have been tagged with step-by-step guide]]></description><link>https://community.secnto.com//tags/step-by-step guide</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 19:55:09 GMT</lastBuildDate><atom:link href="https://community.secnto.com//tags/step-by-step guide.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[🛠 Step-by-Step Guide to Deploy Saleor on Google Cloud (GCE)]]></title><description><![CDATA[<p dir="auto">Awesome! Deploying Saleor on Google Cloud can be a great way to scale your eCommerce solution. I’ll guide you step-by-step using Google Cloud Compute Engine (GCE) or Google Kubernetes Engine (GKE) — let’s start with the simpler method: GCE with Docker + Docker Compose, which is great for development and staging.</p>
<p dir="auto">⸻</p>
<p dir="auto">🛠 Step-by-Step Guide to Deploy Saleor on Google Cloud (GCE)</p>
<p dir="auto">⸻</p>
<p dir="auto">Step 1: Set Up Google Cloud Project<br />
1.	Go to Google Cloud Console<br />
2.	Create a new project or use an existing one.<br />
3.	Enable the Compute Engine API.<br />
4.	Optionally enable Cloud SQL and Cloud Storage if you plan to use managed DB or media storage.</p>
<p dir="auto">⸻</p>
<p dir="auto">Step 2: Create a VM Instance (Compute Engine)<br />
1.	Navigate to Compute Engine &gt; VM Instances<br />
2.	Click Create Instance<br />
•	Choose a machine type: e2-medium or better<br />
•	Boot disk: Ubuntu 22.04 LTS (or Debian)<br />
•	Allow HTTP &amp; HTTPS traffic<br />
3.	Click Create</p>
<p dir="auto">Once created, SSH into the instance.</p>
<p dir="auto">⸻</p>
<p dir="auto">Step 3: Install Docker &amp; Docker Compose</p>
<p dir="auto">SSH into your instance, then run:</p>
<pre><code># Update packages
sudo apt update &amp;&amp; sudo apt upgrade -y

# Install Docker
sudo apt install docker.io -y
sudo systemctl start docker
sudo systemctl enable docker

# Add user to docker group
sudo usermod -aG docker $USER
newgrp docker

# Install Docker Compose
sudo apt install docker-compose -y
</code></pre>
<p dir="auto">⸻</p>
<p dir="auto">Step 4: Clone Saleor</p>
<pre><code>git clone https://github.com/saleor/saleor-platform.git
cd saleor-platform
</code></pre>
<p dir="auto">This repo includes all components: Saleor API, Dashboard, and Storefront.</p>
<p dir="auto">⸻</p>
<p dir="auto">Step 5: Configure Environment Variables</p>
<pre><code>Edit the .env file:

cp .env.example .env
nano .env
</code></pre>
<p dir="auto">Update:<br />
•	ALLOWED_HOSTS=your_public_ip_or_domain<br />
•	Set secrets, database URLs, etc. (You can use Docker Compose’s defaults for now)</p>
<p dir="auto">⸻</p>
<p dir="auto">Step 6: Run with Docker Compose</p>
<pre><code>docker compose build
docker compose up -d
</code></pre>
<p dir="auto">It will spin up:<br />
•	Saleor API (GraphQL)<br />
•	Dashboard (Admin Panel)<br />
•	Storefront (Next.js PWA)<br />
•	Postgres + Redis</p>
<p dir="auto">⸻</p>
<p dir="auto">Step 7: Access Saleor<br />
•	Storefront: <a href="http://your-vm-external-ip:3000" target="_blank" rel="noopener noreferrer nofollow ugc">http://your-vm-external-ip:3000</a><br />
•	Dashboard: <a href="http://your-vm-external-ip:9000" target="_blank" rel="noopener noreferrer nofollow ugc">http://your-vm-external-ip:9000</a><br />
•	GraphQL API: <a href="http://your-vm-external-ip:8000/graphql/" target="_blank" rel="noopener noreferrer nofollow ugc">http://your-vm-external-ip:8000/graphql/</a></p>
<p dir="auto">⸻</p>
<p dir="auto">✅ Optional (But Recommended)<br />
•	Use Cloud SQL for a managed PostgreSQL database.<br />
•	Use Cloud Storage for static/media assets.<br />
•	Set up a domain name and HTTPS using NGINX + Let’s Encrypt or Cloud Load Balancer.<br />
•	Use GKE for production-grade, scalable deployments (I can guide you on this too).</p>
<p dir="auto">⸻</p>
<p dir="auto">Want help with setting up HTTPS, domain, or moving to GKE? Let me know!</p>
]]></description><link>https://community.secnto.com//topic/2729/step-by-step-guide-to-deploy-saleor-on-google-cloud-gce</link><guid isPermaLink="true">https://community.secnto.com//topic/2729/step-by-step-guide-to-deploy-saleor-on-google-cloud-gce</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Here’s a step-by-step guide to upgrade PHP to version 8.2 on Ubuntu:]]></title><description><![CDATA[@Furqan said in Here’s a step-by-step guide to upgrade PHP to version 8.2 on Ubuntu::

how to install unzip ubuntu?

To install unzip on Ubuntu, follow these steps:
Step 1: Update System Packages
Always ensure your system packages are up to date.
sudo apt update

Step 2: Install unzip
Install the unzip package using the following command:
sudo apt install unzip -y

Step 3: Verify Installation
Check if unzip is installed by verifying its version:
unzip -v

If installed successfully, it will display the unzip version and related details.
Step 4: Use unzip
You can now use unzip to extract .zip files. For example:
unzip filename.zip

•	To extract to a specific directory:
unzip filename.zip -d /path/to/destination
•	To list the contents of a zip file without extracting:
unzip -l filename.zip

That’s it! You now have unzip installed and ready to use on Ubuntu.
]]></description><link>https://community.secnto.com//topic/2695/here-s-a-step-by-step-guide-to-upgrade-php-to-version-8-2-on-ubuntu</link><guid isPermaLink="true">https://community.secnto.com//topic/2695/here-s-a-step-by-step-guide-to-upgrade-php-to-version-8-2-on-ubuntu</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Creating a Zoom account is a simple process. Here&#x27;s a step-by-step guide:]]></title><description><![CDATA[<h3>Steps to Create a Zoom Account:</h3>
<ol>
<li>
<p dir="auto"><strong><a href="https://zoom.us/download" target="_blank" rel="noopener noreferrer nofollow ugc">Download the Zoom App</a></strong></p>
<ul>
<li>Go to your device’s app store (<a href="https://play.google.com/store/apps/details?id=us.zoom.zrc" target="_blank" rel="noopener noreferrer nofollow ugc">Google Play Store</a> for Android or <a href="https://itunes.apple.com/us/app/zoompresence/id900259081?ls=1&amp;mt=8" target="_blank" rel="noopener noreferrer nofollow ugc">Apple App Store for iOS</a>) and search for “Zoom.”</li>
<li>Download and install the app.</li>
</ul>
</li>
<li>
<p dir="auto"><strong>Open the Zoom App</strong><br />
Once installed, open the Zoom app.</p>
</li>
<li>
<p dir="auto"><strong>Sign Up for an Account</strong></p>
<ul>
<li>On the home screen of the app, you’ll see two options: “Sign In” and “Sign Up.”</li>
<li>Tap <strong>Sign Up</strong>.</li>
</ul>
</li>
<li>
<p dir="auto"><strong>Enter Your Details</strong></p>
<ul>
<li>You’ll be prompted to enter your <strong>email address</strong>, <strong>first name</strong>, and <strong>last name</strong>.</li>
<li>Agree to Zoom’s <strong>terms of service</strong> by ticking the checkbox.</li>
<li>Tap <strong>Sign Up</strong>.</li>
</ul>
</li>
<li>
<p dir="auto"><strong>Verify Your Email</strong></p>
<ul>
<li>Zoom will send you a confirmation email to verify your account.</li>
<li>Go to your email inbox, find the Zoom verification email, and click the <strong>Activate Account</strong> button.</li>
</ul>
</li>
<li>
<p dir="auto"><strong>Complete Registration</strong></p>
<ul>
<li>After email verification, you’ll be directed to a webpage where you’ll need to create a <strong>password</strong> for your Zoom account.</li>
<li>Once your password is set, you can log into the Zoom app using your new credentials.</li>
</ul>
</li>
<li>
<p dir="auto"><strong>Optional Step: Set Up Two-Factor Authentication (2FA)</strong><br />
For added security, you can enable 2FA in the Zoom account settings to protect your account.</p>
</li>
</ol>
<p dir="auto">Once done, you can start scheduling meetings, joining calls, and using all the features Zoom offers!</p>
<p dir="auto"><a href="https://zoom.us/download" target="_blank" rel="noopener noreferrer nofollow ugc">Other download options</a></p>
<p dir="auto"><strong>Zoom Workplace for Mac</strong><br />
Unlock the full suite of collaboration with Team Chat, Whiteboard, Notes and more - included with your Zoom Meetings account.</p>
<ol>
<li><a href="https://zoom.us/client/6.2.0.40111/zoomusInstallerFull.pkg?archType=arm64&amp;amp_device_id=461bb16f-49ff-4770-9bf1-d14aef8bf456" target="_blank" rel="noopener noreferrer nofollow ugc">Download for Apple Silicon</a></li>
<li><a href="https://zoom.us/client/6.2.0.40111/zoomusInstallerFull.pkg?amp_device_id=461bb16f-49ff-4770-9bf1-d14aef8bf456" target="_blank" rel="noopener noreferrer nofollow ugc">Download for intel</a></li>
</ol>
<iframe width="1080" height="608" src="https://www.youtube.com/embed/gLDLikvppDM" title="⚡️ EASY: HOW TO CREATE ZOOM ACCOUNT | How To" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"></iframe>]]></description><link>https://community.secnto.com//topic/2620/creating-a-zoom-account-is-a-simple-process-here-s-a-step-by-step-guide</link><guid isPermaLink="true">https://community.secnto.com//topic/2620/creating-a-zoom-account-is-a-simple-process-here-s-a-step-by-step-guide</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>